home *** CD-ROM | disk | FTP | other *** search
/ Pesquisa Dirigida / Pesquisa Dirigida.iso / JOGOS / mini_putt2.swf / scripts / DefineSprite_235 / frame_1 / DoAction.as
Text File  |  2005-01-07  |  290b  |  22 lines

  1. tellTarget("..")
  2. {
  3.    ymod = ydir * 0.4;
  4.    if(frame >= 46)
  5.    {
  6.       ydir -= 0.3;
  7.    }
  8.    else
  9.    {
  10.       ydir += 0.3;
  11.    }
  12.    frame -= ymod;
  13.    if(92 < int(frame) or int(frame) < 3)
  14.    {
  15.       gotoAndStop(93);
  16.    }
  17.    else
  18.    {
  19.       gotoAndStop(int(frame));
  20.    }
  21. }
  22.